home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_08_01
/
8n01029a
< prev
next >
Wrap
Text File
|
1990-02-18
|
406b
|
21 lines
Listing 1
/* read username and lookup info */
getuser()
{
gets(user);
if (0 == (pwent = getpwent(user))) {
... complain about illegal user ...
... exit
}
/* read and test password */
getpass()
{
gets(password);
if (strcmp(user,"anonymous") == 0 ||
strcmp(encrypt(password),pwent->pwd) == 0) ...